home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xmcd-1.4 / libdi.d / os_demo.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-10  |  1.4 KB  |  46 lines

  1. /*
  2.  *   libdi - CD Audio Player Device Interface Library
  3.  *
  4.  *   Copyright (C) 1995  Ti Kan
  5.  *   E-mail: ti@amb.org
  6.  *
  7.  *   This program is free software; you can redistribute it and/or modify
  8.  *   it under the terms of the GNU General Public License as published by
  9.  *   the Free Software Foundation; either version 2 of the License, or
  10.  *   (at your option) any later version.
  11.  *
  12.  *   This program is distributed in the hope that it will be useful,
  13.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  *   GNU General Public License for more details.
  16.  *
  17.  *   You should have received a copy of the GNU General Public License
  18.  *   along with this program; if not, write to the Free Software
  19.  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  *
  21.  */
  22. #ifndef __OS_DEMO_H__
  23. #define __OS_DEMO_H__
  24.  
  25. #if defined(DI_SCSIPT) && defined(DEMO_ONLY)
  26.  
  27. #ifndef LINT
  28. static char *_os_demo_h_ident_ = "@(#)os_demo.h    5.4 94/12/28";
  29. #endif
  30.  
  31.  
  32. #include "libdi.d/os_cdsim.h"    /* CD-ROM simulator header file */
  33.  
  34.  
  35. /* Public function prototypes */
  36. extern bool_t    pthru_send(byte_t, word32_t, byte_t *, word32_t, byte_t,
  37.             word32_t, byte_t, byte_t, byte_t, bool_t);
  38. extern bool_t    pthru_open(char *);
  39. extern void    pthru_close(void);
  40. extern char    *pthru_vers(void);
  41.  
  42. #endif    /* DI_SCSIPT DEMO_ONLY */
  43.  
  44. #endif    /* __OS_DEMO_H__ */
  45.  
  46.